home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / adjustment.sql < prev    next >
Text File  |  2000-05-12  |  1KB  |  42 lines

  1. /* RCSVER $Id: adjustment.sql,v 1.2 1999-03-19 11:24:05-06 evan CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1998, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        adjustment
  6. * Date:        1/10/1999
  7. * memo:        Evan M. Ghormley    
  8. * Description:    Create the adjustment table. 
  9. * Changes:
  10. ************************************************************************* */
  11. CREATE TABLE adjustment
  12. (
  13.       cashbox_total_seq_num    NUMBER(38),
  14.       batch_total_seq_num    NUMBER(38),
  15.       acctday_total_seq_num NUMBER(38),
  16.       insert_date    DATE,
  17.     user_id        NUMBER,            
  18.     audit_id    VARCHAR2(15),
  19.     description    VARCHAR2(300),
  20.     coin_adjust    NUMBER(20,2),
  21.     bill_adjust    NUMBER(20,2),
  22.     total_adjust    NUMBER(20,2)
  23. );
  24.  
  25.  
  26.  
  27. /* *********************************************************
  28. *    Relationships
  29. *   total_table_id     m:1    CashboxTotals
  30. *   total_table_id    m:1    BatchTotals
  31. *   total_table_id    m:1    AcctDateTotals
  32. *   id_counter
  33. *   insert_date
  34. *   user_id        m:1    Users.user_id
  35. *   audit_id
  36. *   description
  37. *   coin_adjust
  38. *   bill_adjust
  39. *   total_adjust
  40. ******************************************************** */ 
  41.    
  42.